From b08720f7e4f1efedfe2f99debb35d34822b9be98 Mon Sep 17 00:00:00 2001 From: "kaf24@localhost.localdomain" Date: Sat, 19 Aug 2006 11:13:17 +0100 Subject: [PATCH] [XEN] Make some implicit header includes explicit. Signed-off-by: Tristan Gingold --- xen/common/elf.c | 1 + xen/common/memory.c | 1 + xen/common/rangeset.c | 1 + xen/common/sched_bvt.c | 1 + xen/common/sched_credit.c | 2 +- xen/common/sched_sedf.c | 1 + xen/common/schedule.c | 1 + xen/common/trace.c | 1 + xen/drivers/char/serial.c | 1 + 9 files changed, 9 insertions(+), 1 deletion(-) diff --git a/xen/common/elf.c b/xen/common/elf.c index 950b13c407..bf6c826f80 100644 --- a/xen/common/elf.c +++ b/xen/common/elf.c @@ -10,6 +10,7 @@ #include #include #include +#include static void loadelfsymtab(struct domain_setup_info *dsi, int doload); static inline int is_loadable_phdr(Elf_Phdr *phdr) diff --git a/xen/common/memory.c b/xen/common/memory.c index 75683ca0a1..c2827fa59f 100644 --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include diff --git a/xen/common/rangeset.c b/xen/common/rangeset.c index 6873002012..d90a39b67b 100644 --- a/xen/common/rangeset.c +++ b/xen/common/rangeset.c @@ -8,6 +8,7 @@ */ #include +#include #include /* An inclusive range [s,e] and pointer to next range in ascending order. */ diff --git a/xen/common/sched_bvt.c b/xen/common/sched_bvt.c index 839194a1ad..eab087c411 100644 --- a/xen/common/sched_bvt.c +++ b/xen/common/sched_bvt.c @@ -24,6 +24,7 @@ #include #include #include +#include /* all per-domain BVT-specific scheduling info is stored here */ struct bvt_vcpu_info diff --git a/xen/common/sched_credit.c b/xen/common/sched_credit.c index 40672701ec..2feb8752f6 100644 --- a/xen/common/sched_credit.c +++ b/xen/common/sched_credit.c @@ -20,7 +20,7 @@ #include #include #include - +#include /* * CSCHED_STATS diff --git a/xen/common/sched_sedf.c b/xen/common/sched_sedf.c index c3a9d14221..4f7d6380e9 100644 --- a/xen/common/sched_sedf.c +++ b/xen/common/sched_sedf.c @@ -12,6 +12,7 @@ #include #include #include +#include /*verbosity settings*/ #define SEDFLEVEL 0 diff --git a/xen/common/schedule.c b/xen/common/schedule.c index 6913e4992f..801966f38a 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include diff --git a/xen/common/trace.c b/xen/common/trace.c index 070670f49e..0b6df3c4d1 100644 --- a/xen/common/trace.c +++ b/xen/common/trace.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include diff --git a/xen/drivers/char/serial.c b/xen/drivers/char/serial.c index 93bb556204..024de30ae9 100644 --- a/xen/drivers/char/serial.c +++ b/xen/drivers/char/serial.c @@ -12,6 +12,7 @@ #include #include #include +#include #include static struct serial_port com[2] = { -- 2.30.2